home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / d3_zgraph.ph < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.2 KB  |  60 lines

  1. /*****************************************************************************
  2.   FILE           : d3_zgraph.ph
  3.   SHORTNAME      : zgraph.ph
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : header for d3_zgraph.c
  7.   NOTES          : all functions will be exported
  8.  
  9.   AUTHOR         : Ralf Huebner
  10.   DATE           : 1.12.1991
  11.  
  12.   CHANGED BY     :
  13.   IDENTIFICATION : @(#)d3_zgraph.ph    1.7 3/2/94
  14.   SCCS VERSION   : 1.7
  15.   LAST CHANGE    : 3/2/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.              
  19. ******************************************************************************/
  20.  
  21.  
  22. #ifndef _D3_ZGRAPH_DEFINED_
  23. #define _D3_ZGRAPH_DEFINED_
  24.  
  25.  
  26. /* begin global definition section */
  27.  
  28.  
  29. int d3_initZbuffer (void);
  30. void d3_clearZbuffer (void);
  31. void d3_readZbuffer (int, int, float *);
  32. void d3_writeZbuffer (int, int, float);
  33. void d3_freeZbuffer (void);
  34.  
  35.  
  36. extern int d3_displayXsize;
  37. extern int d3_displayYsize;
  38. extern bool d3_displayIsReady;
  39.  
  40.  
  41. /* end global definition section */
  42.  
  43. /* begin private definition section */
  44.  
  45.  
  46. static float *zbuffer;
  47. static bool zbuffer_isInit = FALSE;
  48. static int zbuffer_xsize;
  49. static int zbuffer_ysize;
  50.  
  51.  
  52. /* end private definition section */
  53.  
  54.  
  55. #endif /* _D3_ZGRAPH_DEFINED_ */
  56.  
  57.  
  58. /* end of file */
  59. /* lines: 30 */
  60.